Tables [dbo].[Admin_Section_Ref]
Properties
PropertyValue
Created10:31:13 AM Tuesday, March 02, 2010
Last Modified1:17:31 PM Thursday, February 23, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_Admin_Section_Ref: AdminSectionCodeAdminSectionCodevarchar(255)255
No
AdminSectionDescvarchar(255)255
No
WorkflowTaggingIndchar(1)1
Yes
Foreign Keys FK_Admin_Section_Ref_Component_Ref: [dbo].[Component_Ref].ComponentCodeIndexes IX_Admin_Section_Ref_ComponentCode: ComponentCodeComponentCodechar(2)2
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Admin_Section_Ref: AdminSectionCodePK_Admin_Section_RefAdminSectionCode
Yes
IX_Admin_Section_Ref_ComponentCodeComponentCode
Foreign Keys Foreign Keys
NameColumns
FK_Admin_Section_Ref_Component_RefComponentCode->[dbo].[Component_Ref].[ComponentCode]
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Admin_Section_Ref]
(
[AdminSectionCode] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[AdminSectionDesc] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[WorkflowTaggingInd] [char] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ComponentCode] [char] (2) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Admin_Section_Ref] ADD CONSTRAINT [PK_Admin_Section_Ref] PRIMARY KEY CLUSTERED ([AdminSectionCode]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_Admin_Section_Ref_ComponentCode] ON [dbo].[Admin_Section_Ref] ([ComponentCode]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Admin_Section_Ref] ADD CONSTRAINT [FK_Admin_Section_Ref_Component_Ref] FOREIGN KEY ([ComponentCode]) REFERENCES [dbo].[Component_Ref] ([ComponentCode])
GO
GRANT REFERENCES ON  [dbo].[Admin_Section_Ref] TO [IMIS]
GRANT SELECT ON  [dbo].[Admin_Section_Ref] TO [IMIS]
GRANT INSERT ON  [dbo].[Admin_Section_Ref] TO [IMIS]
GRANT DELETE ON  [dbo].[Admin_Section_Ref] TO [IMIS]
GRANT UPDATE ON  [dbo].[Admin_Section_Ref] TO [IMIS]
GO
Uses
Used By